home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d1 / advid105.arc / ROW25.ASM < prev    next >
Assembly Source File  |  1989-08-05  |  563b  |  33 lines

  1.             PAGE 60,132
  2.  
  3.             TITLE row25.com  version 1.00  1989-04-08
  4.  
  5. ;
  6. ; AnDan Software Row25 Version 1.00
  7. ; Copyright (c) AnDan Software 1989
  8. ;
  9. ; Shareware:
  10. ;
  11. ; This source code may be copied if no fee is charged and
  12. ; if no changes are done.
  13. ;
  14. ;                       AnDan Software
  15. ;
  16. ;
  17. ;
  18.  
  19. com         SEGMENT para
  20.  
  21.             ASSUME cs:com,ds:com,ss:com,es:com
  22.  
  23.             ORG 100H
  24.  
  25. start_main: mov ax,3
  26.             int 10H
  27.             mov ax,4C00H
  28.             int 21H
  29.  
  30. com         ENDS
  31.  
  32.             END start_main
  33.